Skip to content

范围鼠标移动 - MoveToEx

函数简介

将鼠标移动到指定范围内的随机位置,模拟更自然的鼠标移动。

接口名称

MoveToEx

DLL调用

long MoveToEx(long ola, int x, int y, int w, int h);

参数说明

参数名类型说明
ola长整数型OLAPlug对象的指针,由 CreateCOLAPlugInterFace 接口生成。
x整数型目标区域左上角的X坐标。
y整数型目标区域左上角的Y坐标。
w整数型目标区域的宽度(从x计算起)。
h整数型目标区域的高度(从y计算起)。

示例

SDK 调用

cpp
#include "OLAPlugServer.h"

OLAPlugServer ola;
std::string result = ola.MoveToEx(100, 200, 800, 600);
csharp
using OLAPlug;

var ola = new OLAPlugServer();
string result = ola.MoveToEx(100, 200, 800, 600);
python
from OLAPlugServer import OLAPlugServer

ola = OLAPlugServer()
result = ola.MoveToEx(100, 200, 800, 600)
java
import com.olaplug.OLAPlugServer;

OLAPlugServer ola = new OLAPlugServer();
String result = ola.MoveToEx(100, 200, 800, 600);
cpp
var ola = com("OlaPlug.OlaSoft")
var result = ola.MoveToEx(100, 200, 800, 600)
vbscript
Set ola = CreateObject("OlaPlug.OlaSoft")
result = ola.MoveToEx(100, 200, 800, 600)
text
.局部变量 ola, OLAPlug
ola.创建 ()
result = ola.MoveToEx(100, 200, 800, 600)
aardio
import OLAPlugServer;
var ola = OLAPlugServer();
var result = ola.MoveToEx(100, 200, 800, 600);
text
变量 ola <类型 = OLAPlugServer>
ola = 新建 OLAPlugServer
文本型 result = ola.MoveToEx(100, 200, 800, 600)
cpp
#include "OLAPlugServer.h"

OLAPlugServer ola;
std::string result = ola.MoveToEx(100, 200, 800, 600);

原生 DLL 调用

cpp
long instance = CreateCOLAPlugInterFace();
long ptr = MoveToEx(instance, 100, 200, 800, 600);
if (ptr != 0) {
    char buffer[512] = {0};
    GetStringFromPtr(ptr, buffer, sizeof(buffer));
    FreeStringPtr(ptr);
}
csharp
using System.Runtime.InteropServices;
using System.Text;

[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern long CreateCOLAPlugInterFace();
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern int GetStringFromPtr(long ptr, StringBuilder lpString, int size);
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern int FreeStringPtr(long ptr);
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern int GetStringSize(long ptr);
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern long MoveToEx(long ola, int x, int y, int w, int h);

long instance = CreateCOLAPlugInterFace();
long ptr = MoveToEx(instance, 100, 200, 800, 600);
if (ptr != 0) {
    StringBuilder sb = new StringBuilder(GetStringSize(ptr) + 1);
    GetStringFromPtr(ptr, sb, sb.Capacity);
    FreeStringPtr(ptr);
    string result = sb.ToString();
}
python
from ctypes import CDLL, c_int, c_int64, create_string_buffer

ola = CDLL("OLAPlug_x64.dll")
ola.CreateCOLAPlugInterFace.restype = c_int64
instance = ola.CreateCOLAPlugInterFace()
ptr = ola.MoveToEx(instance, 100, 200, 800, 600)
if ptr:
    buf = create_string_buffer(512)
    ola.GetStringFromPtr(ptr, buf, 512)
    ola.FreeStringPtr(ptr)
    result = buf.value.decode("utf-8")

返回值

字符串指针地址,包含移动后的坐标,格式为 "x,y"。返回 0 表示失败。

注意事项

  • DLL调用返回字符串指针地址,需要调用 FreeStringPtr 接口释放内存。
  • 此函数会在指定范围内随机选择一个点作为目标位置。
  • 确保指定的范围在屏幕可见区域内。